home *** CD-ROM | disk | FTP | other *** search
- stop();
- checkButtons = function()
- {
- if(startLevel < 2)
- {
- down_btn._alpha = 50;
- down_btn.enabled = false;
- }
- else if(startLevel > 9)
- {
- up_btn._alpha = 50;
- up_btn.enabled = false;
- }
- else
- {
- up_btn._alpha = down_btn._alpha = 100;
- up_btn.enabled = down_btn.enabled = true;
- }
- };
- checkButtons();
- down_btn.onPress = function()
- {
- startLevel--;
- checkButtons();
- };
- up_btn.onPress = function()
- {
- startLevel++;
- checkButtons();
- };
- ok_btn.onPress = function()
- {
- play();
- };
-